home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Technotools
/
Technotools (Chestnut CD-ROM)(1993).ISO
/
lantools
/
blueprnt
/
bpecho.asm
< prev
next >
Wrap
Assembly Source File
|
1989-09-27
|
1KB
|
42 lines
;************************************************************
;* Echo Message to BP-LAN Socket (BPECHO.ASM, BPECHO.COM) *
;* by Craig Chaiken *
;* September 21, 1989 *
;* *
;* Function: Echo Message in Command line to Defined Socket *
;* *
;* Command Format: *
;* BPECHO /socket /message *
;************************************************************
codeseg segment byte
assume cs:codeseg,ds:codeseg,es:codeseg
org 100h
start: jmp echo
;
socket_num db 0
include bpbioshd.mod
include misc.mod
echo proc near ;Exit if no Parameters
mov al,cs:[80h]
or al,al
jnz echo1
jmp echo3
echo1: mov si,81h
call get_opt
jb echo3
mov socket_num,cl
call wslash
echo2: mov al,[si]
bpbios phys_int,transmit_byte,socket_num
inc si
cmp al,13
jnz echo2
echo3: int 20h
echo endp
codeseg ends
end start